home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Directorty Opus 5 - Magellan
/
Opus 5 - Magellan.iso
/
Extras
/
DLGoodies
/
lister.dopus5
< prev
next >
Wrap
Text File
|
1996-08-29
|
641b
|
33 lines
/*
* Open up a new lister and display device, (volume, assign) list.
* V1.0 (2.7.96) by David Lübbren.
*
* The emphasis is on NEW lister. If source listers are active they are
* temporarily disabled (Hack).
*
* Call: Arexx Dopus5:Arexx/lister.dopus5
*/
OPTIONS RESULTS
PARSE ARG dopusport
IF dopusport ~= "" THEN ADDRESS VALUE dopusport
ELSE DO
SAY "No DOpus running !"
EXIT
END
lister query source stem handles.
IF rc = 0 THEN DO
DO i = 0 TO handles.count - 1
lister set handles.i off
END
command DeviceList
DO i = 0 TO handles.count - 1
lister set handles.i source
END
END
ELSE
command DeviceList
EXIT